home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-04-29 | 44.1 KB | 1,890 lines |
- object frmStyles: TfrmStyles
- Left = 254
- Top = 226
- BorderIcons = [biSystemMenu, biHelp]
- BorderStyle = bsDialog
- Caption = 'Edit Styles'
- ClientHeight = 311
- ClientWidth = 473
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Pitch = fpVariable
- Font.Style = []
- OldCreateOrder = True
- Position = poScreenCenter
- OnActivate = FormActivate
- OnClose = FormClose
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object panMenu: TPanel
- Left = 0
- Top = 0
- Width = 473
- Height = 275
- Hint = 'Add a New Style'
- Align = alClient
- TabOrder = 1
- object lblExistingStyles: TLabel
- Left = 14
- Top = 14
- Width = 70
- Height = 13
- Caption = 'Existing Styles '
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Pitch = fpVariable
- Font.Style = []
- ParentFont = False
- end
- object lstStyles: TListBox
- Left = 12
- Top = 28
- Width = 211
- Height = 191
- ItemHeight = 13
- Sorted = True
- TabOrder = 0
- OnDblClick = lstStylesDblClick
- end
- object btnNew: TButton
- Left = 14
- Top = 233
- Width = 66
- Height = 22
- Caption = '&New'
- ParentShowHint = False
- ShowHint = True
- TabOrder = 1
- OnClick = btnNewClick
- end
- object btnEdit: TButton
- Left = 86
- Top = 233
- Width = 65
- Height = 22
- Hint = 'Edit an Existing Style'
- Caption = '&Edit'
- Default = True
- ParentShowHint = False
- ShowHint = True
- TabOrder = 2
- OnClick = btnEditClick
- end
- object btnRemove: TButton
- Left = 158
- Top = 233
- Width = 65
- Height = 22
- Hint = 'Remove an Existing Style'
- Caption = '&Remove'
- ParentShowHint = False
- ShowHint = True
- TabOrder = 3
- OnClick = btnRemoveClick
- end
- object GroupBox1: TGroupBox
- Left = 228
- Top = 24
- Width = 236
- Height = 232
- TabOrder = 4
- object lblMain: TLabel
- Left = 7
- Top = 9
- Width = 222
- Height = 65
- Caption =
- 'Cascading Style Sheets separate presentation from HyperText Mark' +
- 'up. They give an author the power to apply detailed formatting ' +
- 'to existing tags, such as weight, decoration, size and color.'
- WordWrap = True
- end
- object Label1: TLabel
- Left = 7
- Top = 87
- Width = 221
- Height = 39
- Caption =
- 'Containers may also be given styles, and any objects residing in' +
- 'side will inherit the style of the enclosing container.'
- WordWrap = True
- end
- object Label2: TLabel
- Left = 5
- Top = 143
- Width = 217
- Height = 52
- Caption =
- 'The advantages of Cascading Style Sheets are clear: a single fil' +
- 'e may be linked from every page across a Web site, allowing easy' +
- ' global formatting changes. '
- WordWrap = True
- end
- end
- end
- object panMain: TPanel
- Left = 0
- Top = 0
- Width = 473
- Height = 275
- Align = alClient
- Caption = 'panMain'
- TabOrder = 2
- object panEffects: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 6
- object lblBold: TLabel
- Left = 88
- Top = 35
- Width = 137
- Height = 13
- Caption = 'Set the Font Effect To Bold: '
- end
- object lblItalic: TLabel
- Left = 85
- Top = 65
- Width = 140
- Height = 13
- Caption = 'Set the Font Effect To Italic: '
- end
- object lblStrikethrough: TLabel
- Left = 43
- Top = 94
- Width = 182
- Height = 13
- Caption = 'Set the Font Effect To Strikethrough: '
- end
- object lblBlink: TLabel
- Left = 87
- Top = 122
- Width = 138
- Height = 13
- Caption = 'Set the Font Effect To Blink: '
- end
- object lblUnderline: TLabel
- Left = 63
- Top = 154
- Width = 162
- Height = 13
- Caption = 'Set the Font Effect To Underline: '
- end
- object lblOverline: TLabel
- Left = 68
- Top = 180
- Width = 157
- Height = 13
- Caption = 'Set the Font Effect To Overline: '
- end
- object lblEffects: TLabel
- Left = 166
- Top = 5
- Width = 38
- Height = 14
- Caption = 'Effects'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object chkBold: TCheckBox
- Left = 238
- Top = 33
- Width = 63
- Height = 15
- HelpContext = 590
- Caption = '&Bold'
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = chkBoldEnter
- end
- object chkItalic: TCheckBox
- Left = 238
- Top = 62
- Width = 69
- Height = 15
- HelpContext = 590
- Caption = '&Italic'
- PopupMenu = popHelp
- TabOrder = 1
- OnEnter = chkItalicEnter
- end
- object chkStrikethrough: TCheckBox
- Left = 238
- Top = 92
- Width = 97
- Height = 14
- HelpContext = 590
- Caption = '&Strikethrough'
- PopupMenu = popHelp
- TabOrder = 2
- OnClick = chkStrikethroughClick
- OnEnter = chkStrikethroughEnter
- end
- object chkBlink: TCheckBox
- Left = 238
- Top = 121
- Width = 41
- Height = 14
- HelpContext = 590
- Caption = '&Blink'
- PopupMenu = popHelp
- TabOrder = 3
- OnClick = chkBlinkClick
- OnEnter = chkBlinkEnter
- end
- object chkUnderline: TCheckBox
- Left = 238
- Top = 151
- Width = 109
- Height = 14
- HelpContext = 590
- Caption = '&Underline'
- PopupMenu = popHelp
- TabOrder = 4
- OnClick = chkUnderlineClick
- OnEnter = chkUnderlineEnter
- end
- object chkOverline: TCheckBox
- Left = 238
- Top = 179
- Width = 111
- Height = 15
- HelpContext = 590
- Caption = 'O&verline'
- PopupMenu = popHelp
- TabOrder = 5
- OnClick = chkOverlineClick
- OnEnter = chkOverlineEnter
- end
- end
- object panAnchor: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 7
- object lblNormal: TLabel
- Left = 119
- Top = 77
- Width = 89
- Height = 13
- Caption = 'A normal Anchor : '
- Enabled = False
- end
- object lblVisited: TLabel
- Left = 122
- Top = 126
- Width = 83
- Height = 13
- Caption = 'A vsited Anchor :'
- Enabled = False
- end
- object lblActive: TLabel
- Left = 116
- Top = 180
- Width = 92
- Height = 13
- Caption = 'An active Anchor : '
- Enabled = False
- end
- object lblAnchor: TLabel
- Left = 167
- Top = 5
- Width = 40
- Height = 14
- Caption = 'Anchor'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblWarning: TLabel
- Left = 43
- Top = 29
- Width = 256
- Height = 26
- Alignment = taCenter
- Caption =
- 'Note : The anchor opttions will only be enabled if the current s' +
- 'tyle is being applied to the Anchor Tag - A'
- WordWrap = True
- end
- object radioNormal: TRadioButton
- Left = 213
- Top = 77
- Width = 51
- Height = 15
- HelpContext = 589
- Caption = '&Normal'
- Enabled = False
- TabOrder = 0
- end
- object radioVisited: TRadioButton
- Left = 213
- Top = 126
- Width = 48
- Height = 15
- HelpContext = 589
- Caption = '&Visited'
- Enabled = False
- TabOrder = 1
- end
- object radioActive: TRadioButton
- Left = 213
- Top = 178
- Width = 48
- Height = 15
- HelpContext = 589
- Caption = '&Active'
- Enabled = False
- TabOrder = 2
- end
- end
- object panBackground: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 11
- object lblBackground: TLabel
- Left = 143
- Top = 5
- Width = 66
- Height = 14
- Caption = 'Background'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblBackgroundColor: TLabel
- Left = 85
- Top = 35
- Width = 32
- Height = 13
- Caption = '&Color: '
- end
- object GroupBox2: TGroupBox
- Left = 9
- Top = 57
- Width = 348
- Height = 149
- Caption = 'Image'
- TabOrder = 0
- object btnBackgroundURL: TSpeedButton
- Left = 318
- Top = 19
- Width = 22
- Height = 20
- OnClick = btnBackgroundURLClick
- end
- object lblBackgroundURL: TLabel
- Left = 9
- Top = 22
- Width = 49
- Height = 13
- Caption = '&Filename: '
- FocusControl = editBackgroundURL
- end
- object lblXCoord: TLabel
- Left = 115
- Top = 99
- Width = 45
- Height = 13
- Caption = '&X Coord :'
- Enabled = False
- FocusControl = seditBackgroundX
- end
- object lblYCoord: TLabel
- Left = 230
- Top = 99
- Width = 45
- Height = 13
- Caption = '&Y Coord :'
- Enabled = False
- FocusControl = seditBackgroundY
- end
- object editBackgroundURL: TEdit
- Left = 59
- Top = 19
- Width = 259
- Height = 21
- HelpContext = 586
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = editBackgroundURLEnter
- end
- object radBackgroundRepeat: TRadioButton
- Left = 56
- Top = 53
- Width = 55
- Height = 14
- HelpContext = 587
- Caption = '&Repeat'
- PopupMenu = popHelp
- TabOrder = 1
- OnClick = radBackgroundRepeatClick
- OnEnter = radBackgroundRepeatEnter
- end
- object radBackgroundNoRepeat: TRadioButton
- Left = 56
- Top = 75
- Width = 71
- Height = 15
- HelpContext = 587
- Caption = '&No Repeat'
- PopupMenu = popHelp
- TabOrder = 2
- OnClick = radBackgroundNoRepeatClick
- OnEnter = radBackgroundNoRepeatEnter
- end
- object radBackgroundFixed: TRadioButton
- Left = 57
- Top = 115
- Width = 47
- Height = 15
- HelpContext = 588
- Caption = '&Fixed'
- PopupMenu = popHelp
- TabOrder = 5
- OnClick = radBackgroundFixedClick
- OnEnter = radBackgroundFixedEnter
- end
- object seditBackgroundX: TSausEdit
- Left = 114
- Top = 114
- Width = 51
- Height = 21
- HelpContext = 588
- Enabled = False
- TabOrder = 6
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbBackgroundX: TComboBox
- Left = 167
- Top = 114
- Width = 36
- Height = 21
- HelpContext = 588
- Style = csDropDownList
- Enabled = False
- ItemHeight = 13
- TabOrder = 7
- end
- object seditBackgroundY: TSausEdit
- Left = 229
- Top = 114
- Width = 50
- Height = 21
- HelpContext = 588
- Enabled = False
- TabOrder = 8
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbBackgroundY: TComboBox
- Left = 281
- Top = 114
- Width = 36
- Height = 21
- HelpContext = 588
- Style = csDropDownList
- Enabled = False
- ItemHeight = 13
- TabOrder = 9
- end
- object radBackgroundRepeatV: TRadioButton
- Left = 227
- Top = 50
- Width = 92
- Height = 16
- HelpContext = 587
- Caption = 'Repeat &Vertical'
- PopupMenu = popHelp
- TabOrder = 3
- OnClick = radBackgroundRepeatVClick
- OnEnter = radBackgroundRepeatVEnter
- end
- object radBackgroundRepeatH: TRadioButton
- Left = 227
- Top = 72
- Width = 108
- Height = 14
- HelpContext = 587
- Caption = 'Repeat &Horizontal'
- PopupMenu = popHelp
- TabOrder = 4
- OnClick = radBackgroundRepeatHClick
- OnEnter = radBackgroundRepeatHEnter
- end
- end
- object pnlBackgroundColor: TSausColourPicker
- Left = 123
- Top = 30
- Width = 99
- Height = 26
- HelpContext = 585
- TabOrder = 1
- OnEnter = pnlBackgroundColorEnter
- OnChange = pnlBackgroundColorChange
- Version = '1.29'
- Warnings = False
- end
- end
- object panMargin: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 8
- object lblMargin: TLabel
- Left = 163
- Top = 5
- Width = 38
- Height = 14
- Caption = 'Margin'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblMarginLeft: TLabel
- Left = 110
- Top = 155
- Width = 23
- Height = 13
- Caption = '&Left:'
- FocusControl = seditMarginLeft
- end
- object lblMarginRight: TLabel
- Left = 101
- Top = 91
- Width = 32
- Height = 13
- Caption = '&Right: '
- FocusControl = seditMarginRight
- end
- object lblMarginTop: TLabel
- Left = 108
- Top = 56
- Width = 25
- Height = 13
- Caption = '&Top: '
- FocusControl = seditMarginTop
- end
- object lblMarginBottom: TLabel
- Left = 92
- Top = 122
- Width = 41
- Height = 13
- Caption = '&Bottom: '
- FocusControl = seditMarginBottom
- end
- object seditMarginLeft: TSausEdit
- Left = 142
- Top = 152
- Width = 55
- Height = 21
- HelpContext = 583
- TabOrder = 6
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbMarginLeft: TComboBox
- Left = 197
- Top = 152
- Width = 43
- Height = 21
- HelpContext = 584
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 7
- end
- object cmbMarginRight: TComboBox
- Left = 197
- Top = 86
- Width = 43
- Height = 21
- HelpContext = 584
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 3
- end
- object seditMarginRight: TSausEdit
- Left = 142
- Top = 86
- Width = 55
- Height = 21
- HelpContext = 583
- TabOrder = 2
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object seditMarginTop: TSausEdit
- Left = 142
- Top = 53
- Width = 55
- Height = 21
- HelpContext = 583
- TabOrder = 0
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbMarginTop: TComboBox
- Left = 197
- Top = 53
- Width = 43
- Height = 21
- HelpContext = 584
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 1
- end
- object cmbMarginBottom: TComboBox
- Left = 197
- Top = 119
- Width = 43
- Height = 21
- HelpContext = 584
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 5
- end
- object seditMarginBottom: TSausEdit
- Left = 142
- Top = 119
- Width = 55
- Height = 21
- HelpContext = 583
- TabOrder = 4
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- end
- object panBorder: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 9
- object lblBorder: TLabel
- Left = 165
- Top = 5
- Width = 38
- Height = 14
- Caption = 'Border'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblBorderLeft: TLabel
- Left = 32
- Top = 70
- Width = 23
- Height = 13
- Caption = '&Left:'
- FocusControl = cmbBorderLeft
- end
- object lblBorderRight: TLabel
- Left = 26
- Top = 103
- Width = 32
- Height = 13
- Caption = '&Right: '
- FocusControl = cmbBorderRight
- end
- object lblBorderTop: TLabel
- Left = 33
- Top = 133
- Width = 25
- Height = 13
- Caption = '&Top: '
- FocusControl = cmbBorderTop
- end
- object lblBorderBottom: TLabel
- Left = 17
- Top = 163
- Width = 41
- Height = 13
- Caption = '&Bottom: '
- FocusControl = cmbBorderBottom
- end
- object lblBorderStyleLeft: TLabel
- Left = 205
- Top = 70
- Width = 23
- Height = 13
- Caption = 'L&eft:'
- FocusControl = cmbBorderStyleLeft
- end
- object lblBorderStyleRight: TLabel
- Left = 198
- Top = 103
- Width = 32
- Height = 13
- Caption = 'R&ight: '
- FocusControl = cmbBorderStyleRight
- end
- object lblBorderStyleTop: TLabel
- Left = 205
- Top = 133
- Width = 25
- Height = 13
- Caption = 'T&op: '
- FocusControl = cmbBorderStyleTop
- end
- object lblBorderStyleBottom: TLabel
- Left = 189
- Top = 163
- Width = 41
- Height = 13
- Caption = 'Botto&m: '
- FocusControl = cmbBorderStyleBottom
- end
- object lblBorderSize: TLabel
- Left = 97
- Top = 44
- Width = 23
- Height = 14
- Caption = 'Size'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblBorderStyle: TLabel
- Left = 263
- Top = 44
- Width = 27
- Height = 14
- Caption = 'Style'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object cmbBorderLeft: TComboBox
- Left = 67
- Top = 67
- Width = 97
- Height = 21
- HelpContext = 581
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 0
- end
- object cmbBorderRight: TComboBox
- Left = 67
- Top = 98
- Width = 97
- Height = 21
- HelpContext = 581
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 1
- end
- object cmbBorderTop: TComboBox
- Left = 67
- Top = 131
- Width = 97
- Height = 21
- HelpContext = 581
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 2
- end
- object cmbBorderBottom: TComboBox
- Left = 67
- Top = 158
- Width = 97
- Height = 21
- HelpContext = 581
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 3
- end
- object cmbBorderStyleLeft: TComboBox
- Left = 239
- Top = 67
- Width = 97
- Height = 21
- HelpContext = 582
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 4
- end
- object cmbBorderStyleRight: TComboBox
- Left = 239
- Top = 98
- Width = 97
- Height = 21
- HelpContext = 582
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 5
- end
- object cmbBorderStyleTop: TComboBox
- Left = 239
- Top = 131
- Width = 97
- Height = 21
- HelpContext = 582
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 6
- end
- object cmbBorderStyleBottom: TComboBox
- Left = 239
- Top = 159
- Width = 97
- Height = 21
- HelpContext = 582
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 7
- end
- end
- object panPadding: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 10
- object lblPadding: TLabel
- Left = 164
- Top = 5
- Width = 44
- Height = 14
- Caption = 'Padding'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblPaddingLeft: TLabel
- Left = 110
- Top = 157
- Width = 23
- Height = 13
- Caption = '&Left:'
- FocusControl = seditLeft
- end
- object lblPaddingRight: TLabel
- Left = 101
- Top = 93
- Width = 32
- Height = 13
- Caption = '&Right: '
- FocusControl = seditPaddingRight
- end
- object lblPaddingTop: TLabel
- Left = 108
- Top = 58
- Width = 25
- Height = 13
- Caption = '&Top: '
- FocusControl = seditPaddingTop
- end
- object lblPaddingBottom: TLabel
- Left = 92
- Top = 124
- Width = 41
- Height = 13
- Caption = '&Bottom: '
- FocusControl = seditBottom
- end
- object seditLeft: TSausEdit
- Left = 142
- Top = 152
- Width = 55
- Height = 21
- HelpContext = 579
- TabOrder = 6
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbPaddingLeft: TComboBox
- Left = 197
- Top = 152
- Width = 43
- Height = 21
- HelpContext = 580
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 7
- end
- object seditPaddingRight: TSausEdit
- Left = 142
- Top = 86
- Width = 55
- Height = 21
- HelpContext = 579
- TabOrder = 2
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbPaddingRight: TComboBox
- Left = 197
- Top = 86
- Width = 43
- Height = 21
- HelpContext = 580
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 3
- end
- object seditPaddingTop: TSausEdit
- Left = 142
- Top = 53
- Width = 55
- Height = 21
- HelpContext = 579
- TabOrder = 0
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbPaddingTop: TComboBox
- Left = 197
- Top = 53
- Width = 43
- Height = 21
- HelpContext = 580
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 1
- end
- object seditBottom: TSausEdit
- Left = 142
- Top = 119
- Width = 55
- Height = 21
- HelpContext = 579
- TabOrder = 4
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbPaddingBottom: TComboBox
- Left = 197
- Top = 119
- Width = 43
- Height = 21
- HelpContext = 580
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 5
- end
- end
- object panContainer: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 3
- object lblContainer: TLabel
- Left = 161
- Top = 5
- Width = 54
- Height = 14
- Caption = 'Container'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblWidth: TLabel
- Left = 98
- Top = 61
- Width = 35
- Height = 13
- Caption = ' &Width:'
- FocusControl = seditWidth
- end
- object lblHeight: TLabel
- Left = 98
- Top = 103
- Width = 38
- Height = 13
- Caption = '&Height: '
- FocusControl = seditHeight
- end
- object lblAlignment: TLabel
- Left = 82
- Top = 145
- Width = 51
- Height = 13
- Caption = '&Alignment:'
- FocusControl = cmbAlignment
- end
- object seditWidth: TSausEdit
- Left = 141
- Top = 57
- Width = 57
- Height = 21
- HelpContext = 574
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = seditWidthEnter
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object seditHeight: TSausEdit
- Left = 141
- Top = 98
- Width = 57
- Height = 21
- HelpContext = 576
- PopupMenu = popHelp
- TabOrder = 2
- OnEnter = seditHeightEnter
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbAlignment: TComboBox
- Left = 141
- Top = 141
- Width = 103
- Height = 21
- HelpContext = 578
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 4
- OnEnter = cmbAlignmentEnter
- end
- object cmbContainerWidth: TComboBox
- Left = 200
- Top = 57
- Width = 42
- Height = 21
- HelpContext = 575
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 1
- OnEnter = cmbContainerWidthEnter
- end
- object cmbContainerHeight: TComboBox
- Left = 200
- Top = 98
- Width = 44
- Height = 21
- HelpContext = 577
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 3
- OnEnter = cmbContainerHeightEnter
- end
- end
- object panFloat: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 12
- object lblFloat: TLabel
- Left = 173
- Top = 5
- Width = 26
- Height = 14
- Caption = 'Float'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblSideFlow: TLabel
- Left = 85
- Top = 71
- Width = 52
- Height = 13
- Caption = 'Side &Flow: '
- FocusControl = cmbFloatSlideFlow
- end
- object lblClear: TLabel
- Left = 105
- Top = 106
- Width = 29
- Height = 13
- Caption = '&Clear:'
- FocusControl = cmbFloatClear
- end
- object cmbFloatSlideFlow: TComboBox
- Left = 141
- Top = 67
- Width = 127
- Height = 21
- HelpContext = 572
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = cmbFloatSlideFlowEnter
- end
- object cmbFloatClear: TComboBox
- Left = 141
- Top = 103
- Width = 127
- Height = 21
- HelpContext = 573
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 1
- OnEnter = cmbFloatClearEnter
- end
- end
- object panList: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 4
- object lblList: TLabel
- Left = 176
- Top = 5
- Width = 21
- Height = 14
- Caption = 'List'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblListStyle: TLabel
- Left = 62
- Top = 46
- Width = 50
- Height = 13
- Caption = 'List &Style: '
- FocusControl = cmbListStyle
- end
- object lblURL: TLabel
- Left = 85
- Top = 102
- Width = 26
- Height = 13
- Caption = '&URL: '
- FocusControl = editURL
- end
- object btnURL: TSpeedButton
- Left = 290
- Top = 96
- Width = 21
- Height = 20
- OnClick = btnURLClick
- end
- object lblListPosition: TLabel
- Left = 50
- Top = 158
- Width = 60
- Height = 13
- Caption = 'List &Position:'
- FocusControl = cmbListPosition
- end
- object cmbListStyle: TComboBox
- Left = 117
- Top = 41
- Width = 195
- Height = 21
- HelpContext = 569
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = cmbListStyleEnter
- end
- object cmbListPosition: TComboBox
- Left = 117
- Top = 154
- Width = 193
- Height = 21
- HelpContext = 571
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 2
- OnEnter = cmbListPositionEnter
- end
- object editURL: TEdit
- Left = 117
- Top = 96
- Width = 174
- Height = 21
- HelpContext = 570
- TabOrder = 1
- end
- end
- object panSpacing: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 5
- object lblSpacing: TLabel
- Left = 158
- Top = 5
- Width = 43
- Height = 14
- Caption = 'Spacing'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object lblLetterSpacing: TLabel
- Left = 67
- Top = 67
- Width = 73
- Height = 13
- Caption = '&Letter Spacing:'
- FocusControl = seditLetterSpacing
- end
- object lblWordSpacing: TLabel
- Left = 67
- Top = 112
- Width = 73
- Height = 13
- Caption = ' &Word Spacing:'
- FocusControl = seditWordSpacing
- end
- object seditLetterSpacing: TSausEdit
- Left = 148
- Top = 63
- Width = 71
- Height = 21
- HelpContext = 565
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = seditLetterSpacingEnter
- NumericOnly = False
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object seditWordSpacing: TSausEdit
- Left = 148
- Top = 109
- Width = 71
- Height = 21
- HelpContext = 567
- PopupMenu = popHelp
- TabOrder = 2
- OnEnter = seditWordSpacingEnter
- NumericOnly = False
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbLetterSpacing: TComboBox
- Left = 222
- Top = 63
- Width = 46
- Height = 21
- HelpContext = 566
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 1
- OnEnter = cmbLetterSpacingEnter
- end
- object cmbWordSpacing: TComboBox
- Left = 222
- Top = 109
- Width = 45
- Height = 21
- HelpContext = 568
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 3
- OnEnter = cmbWordSpacingEnter
- end
- end
- object panText: TPanel
- Left = 105
- Top = 63
- Width = 367
- Height = 211
- Align = alClient
- TabOrder = 2
- object lblFont: TLabel
- Left = 38
- Top = 31
- Width = 26
- Height = 13
- Caption = '&Font:'
- FocusControl = cmbFont
- end
- object lblAlign: TLabel
- Left = 207
- Top = 28
- Width = 30
- Height = 13
- Caption = 'Ali&gn: '
- FocusControl = cmbAlign
- end
- object lblCase: TLabel
- Left = 207
- Top = 67
- Width = 28
- Height = 13
- Caption = '&Case:'
- FocusControl = cmbCase
- end
- object lblSize: TLabel
- Left = 41
- Top = 67
- Width = 23
- Height = 13
- Caption = '&Size:'
- FocusControl = seditSize
- end
- object lblLineHeight: TLabel
- Left = 6
- Top = 110
- Width = 60
- Height = 13
- Caption = 'Line &Height: '
- FocusControl = sEditLineHeight
- end
- object lblWhiteSpace: TLabel
- Left = 173
- Top = 110
- Width = 64
- Height = 13
- Caption = ' &WhiteSpace:'
- FocusControl = cmbWhiteSpace
- end
- object lblColor: TLabel
- Left = 206
- Top = 154
- Width = 29
- Height = 13
- Caption = 'Co&lor:'
- end
- object lblAppliesTo: TLabel
- Left = 9
- Top = 189
- Width = 53
- Height = 13
- Caption = '&Applies To:'
- FocusControl = cmbAppliesTo
- end
- object lblTextIndent: TLabel
- Left = 2
- Top = 152
- Width = 64
- Height = 13
- Caption = 'Text &Indent: '
- FocusControl = seditTextIndent
- end
- object lblFontProperties: TLabel
- Left = 137
- Top = 5
- Width = 86
- Height = 14
- Caption = 'Font Properties'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Arial'
- Font.Pitch = fpVariable
- Font.Style = [fsBold]
- ParentFont = False
- end
- object cmbFont: TComboBox
- Left = 70
- Top = 24
- Width = 101
- Height = 21
- HelpContext = 552
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- Sorted = True
- TabOrder = 0
- OnEnter = cmbFontEnter
- end
- object cmbAlign: TComboBox
- Left = 242
- Top = 24
- Width = 114
- Height = 21
- HelpContext = 561
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 8
- OnEnter = cmbAlignEnter
- end
- object cmbCase: TComboBox
- Left = 242
- Top = 63
- Width = 114
- Height = 21
- HelpContext = 562
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 9
- OnEnter = cmbCaseEnter
- end
- object cmbSizetype: TComboBox
- Left = 130
- Top = 63
- Width = 41
- Height = 21
- HelpContext = 555
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 2
- OnEnter = cmbSizetypeEnter
- end
- object seditSize: TSausEdit
- Left = 70
- Top = 63
- Width = 59
- Height = 21
- HelpContext = 554
- PopupMenu = popHelp
- TabOrder = 1
- OnEnter = seditSizeEnter
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbLineHeight: TComboBox
- Left = 130
- Top = 106
- Width = 41
- Height = 21
- HelpContext = 557
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 4
- OnEnter = cmbLineHeightEnter
- end
- object cmbWhiteSpace: TComboBox
- Left = 242
- Top = 106
- Width = 114
- Height = 21
- HelpContext = 563
- Style = csDropDownList
- ItemHeight = 13
- TabOrder = 10
- OnEnter = cmbWhiteSpaceEnter
- end
- object cmbTextIndent: TComboBox
- Left = 130
- Top = 148
- Width = 41
- Height = 21
- HelpContext = 559
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 6
- OnEnter = cmbTextIndentEnter
- end
- object seditTextIndent: TSausEdit
- Left = 71
- Top = 148
- Width = 59
- Height = 21
- HelpContext = 558
- PopupMenu = popHelp
- TabOrder = 5
- OnEnter = seditTextIndentEnter
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object cmbAppliesTo: TComboBox
- Left = 70
- Top = 185
- Width = 101
- Height = 21
- HelpContext = 560
- Style = csDropDownList
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 7
- OnEnter = cmbAppliesToEnter
- end
- object sEditLineHeight: TSausEdit
- Left = 70
- Top = 106
- Width = 59
- Height = 21
- HelpContext = 556
- PopupMenu = popHelp
- TabOrder = 3
- OnEnter = sEditLineHeightEnter
- NumericOnly = True
- AllowDecimal = False
- DecimalPlaces = 0
- Max = 0
- Min = 0
- Version = '1.4'
- FileGlyph = sgOpen
- RegStore = False
- end
- object pnlFontColour: TSausColourPicker
- Left = 242
- Top = 148
- Width = 113
- Height = 26
- HelpContext = 564
- ParentColor = True
- TabOrder = 11
- OnEnter = pnlFontColourEnter
- OnChange = pnlFontColourChange
- Version = '1.29'
- Warnings = False
- end
- end
- object groupStyle: TGroupBox
- Left = 1
- Top = 1
- Width = 471
- Height = 62
- Align = alTop
- TabOrder = 0
- object lblStyleName: TLabel
- Left = 10
- Top = 42
- Width = 31
- Height = 13
- Caption = '&Name:'
- FocusControl = editStyleName
- end
- object lblTags: TLabel
- Left = 340
- Top = 42
- Width = 22
- Height = 13
- Caption = '&Tag:'
- FocusControl = cmbTags
- end
- object lblClass: TLabel
- Left = 158
- Top = 42
- Width = 59
- Height = 13
- Caption = 'C&lass Name:'
- FocusControl = editClass
- end
- object Label3: TLabel
- Left = 11
- Top = 8
- Width = 457
- Height = 26
- AutoSize = False
- Caption =
- 'Enter your Style Name, choose whether the style will apply to a ' +
- 'Class Definition and/or a Tag and then enter your properties for' +
- ' the parameters in the Tree List below.'
- WordWrap = True
- end
- object editStyleName: TEdit
- Left = 45
- Top = 37
- Width = 105
- Height = 21
- HelpContext = 548
- PopupMenu = popHelp
- TabOrder = 0
- OnEnter = editStyleNameEnter
- end
- object cmbTags: TComboBox
- Left = 367
- Top = 38
- Width = 99
- Height = 21
- HelpContext = 550
- ItemHeight = 13
- PopupMenu = popHelp
- TabOrder = 2
- OnChange = cmbTagsChange
- OnEnter = cmbTagsEnter
- end
- object editClass: TEdit
- Left = 223
- Top = 37
- Width = 106
- Height = 21
- HelpContext = 549
- TabOrder = 1
- end
- end
- object panTreeView: TPanel
- Left = 1
- Top = 63
- Width = 104
- Height = 211
- Align = alLeft
- Caption = 'panTreeView'
- TabOrder = 1
- object tvStyles: TTreeView
- Left = 1
- Top = 1
- Width = 102
- Height = 209
- HelpContext = 551
- Align = alClient
- Indent = 19
- Items.Data = {
- 020000001D0000000000000000000000FFFFFFFFFFFFFFFF0000000004000000
- 0454657874200000000000000000000000FFFFFFFFFFFFFFFF00000000000000
- 0007456666656374731D0000000000000000000000FFFFFFFFFFFFFFFF000000
- 0000000000044C697374200000000000000000000000FFFFFFFFFFFFFFFF0000
- 0000000000000753706163696E671F0000000000000000000000FFFFFFFFFFFF
- FFFF000000000000000006416E63686F72220000000000000000000000FFFFFF
- FFFFFFFFFF000000000500000009436F6E7461696E65721E0000000000000000
- 000000FFFFFFFFFFFFFFFF000000000000000005466C6F617423000000000000
- 0000000000FFFFFFFFFFFFFFFF00000000000000000A4261636B67726F756E64
- 1F0000000000000000000000FFFFFFFFFFFFFFFF0000000000000000064D6172
- 67696E1F0000000000000000000000FFFFFFFFFFFFFFFF000000000000000006
- 426F72646572200000000000000000000000FFFFFFFFFFFFFFFF000000000000
- 00000750616464696E67}
- ReadOnly = True
- TabOrder = 0
- OnChange = tvStylesChange
- OnClick = tvStylesClick
- end
- end
- end
- object panFooter: TPanel
- Left = 0
- Top = 275
- Width = 473
- Height = 36
- Align = alBottom
- TabOrder = 0
- object lblHelp: TLabel
- Left = 140
- Top = 12
- Width = 158
- Height = 13
- Caption = 'The Help Context Id Tag Storer. '
- Visible = False
- end
- object btnOk: TBitBtn
- Left = 302
- Top = 7
- Width = 75
- Height = 25
- Caption = '&OK'
- TabOrder = 3
- OnClick = btnOkClick
- end
- object btnSave: TBitBtn
- Left = 302
- Top = 7
- Width = 75
- Height = 25
- Caption = '&OK'
- TabOrder = 1
- Visible = False
- OnClick = btnSaveClick
- end
- object btnCancel: TBitBtn
- Left = 387
- Top = 7
- Width = 75
- Height = 25
- Caption = '&Cancel'
- TabOrder = 4
- Visible = False
- OnClick = btnCancelClick
- end
- object btnHelp: TBitBtn
- Left = 12
- Top = 7
- Width = 75
- Height = 25
- Caption = '&Help'
- TabOrder = 0
- OnClick = btnHelpClick
- end
- object btnQuit: TBitBtn
- Left = 387
- Top = 7
- Width = 75
- Height = 25
- Cancel = True
- Caption = '&Cancel'
- ModalResult = 2
- TabOrder = 2
- end
- end
- object ColorDialog: TColorDialog
- Ctl3D = True
- Left = 125
- Top = 319
- end
- object popHelp: TPopupMenu
- OnPopup = popHelpPopup
- Left = 315
- Top = 317
- object WhatsThis: TMenuItem
- Caption = 'What'#39's This?'
- OnClick = WhatsThisClick
- end
- end
- object OpenDialog1: TOpenDialog
- Left = 42
- Top = 345
- end
- end
-